]> git.r.bdr.sh - rbdr/captura/blame - Captura/Core Extensions/Notification+AppEvents.swift
Complete initial release
[rbdr/captura] / Captura / Core Extensions / Notification+AppEvents.swift
CommitLineData
24220348
RBR
1import Foundation
2
3extension Notification.Name {
4 static let startAreaSelection = Notification.Name("startSelectingArea")
5 static let startRecording = Notification.Name("startRecording")
6 static let stopRecording = Notification.Name("stopRecording")
7 static let finalizeRecording = Notification.Name("finalizeRecording")
8 static let reset = Notification.Name("reset")
c9b9e1d6
RBR
9 static let failedToStart = Notification.Name("failedToStart")
10 static let receivedFrame = Notification.Name("receivedFrame")
533cd932 11 static let failedtoUpload = Notification.Name("failedToUpload")
24220348 12}